バージョン

GetDescendantFromType<T>(DependencyObject,Boolean,DependencyObjectSearchCallback<T>,Type[]) メソッド

タイプに基づいて子孫の親を取得します。
シンタックス
'宣言
 
Public Overloads Shared Function GetDescendantFromType(Of T As DependencyObject)( _
   ByVal parent As DependencyObject, _
   ByVal allowSubclassOfType As Boolean, _
   ByVal callback As Utilities.DependencyObjectSearchCallback(Of T), _
   ByVal typesToIgnore() As Type _
) As T
public static T GetDescendantFromType<T>( 
   DependencyObject parent,
   bool allowSubclassOfType,
   Utilities.DependencyObjectSearchCallback<T> callback,
   Type[] typesToIgnore
)
where T: DependencyObject

パラメータ

parent
子孫が検索される DependencyObject。
allowSubclassOfType
タイプのサブクラスが考慮される場合は True。
callback
可能な一致を指定する時に呼び出されるデリゲート。オブジェクトが一致しておらず、検索を続行すべきことを示す場合はコールバックから False を返します。そうでない場合、指定されたオブジェクトがこのメソッドから返されるべきであることを示す場合は True を返します。
typesToIgnore
検索されるべきではない子孫を識別するタイプの配列。

型パラメータ

T

戻り値の型

指定されたタイプの子孫の親、または見つからない場合は null。
参照